golang.org/x/net/http2.ClientConn.doNotReuse (field)

7 uses

	golang.org/x/net/http2 (current package)
		transport.go#L311: 	doNotReuse      bool       // whether conn is marked to not be reused for any future requests
		transport.go#L841: 	cc.doNotReuse = true
		transport.go#L936: 		Closing:              cc.closing || cc.singleUse || cc.doNotReuse || cc.goAway != nil,
		transport.go#L973: 		!cc.doNotReuse &&
		transport.go#L1042: 	return cc.doNotReuse && len(cc.streams) == 0
		transport.go#L1344: 		cc.doNotReuse = true
		transport.go#L2097: 	closeOnIdle := cc.singleUse || cc.doNotReuse || cc.t.disableKeepAlives() || cc.goAway != nil